// Demonstrates the Swing JApplet /* * * */ import javax.swing.*; import java.awt.*; public class Simple1 extends JApplet { public void init() { Container contentPane = getContentPane(); JLabel label = new JLabel ("This is the Simple 1 Swing Applet"); contentPane.add (label); } }